home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource2 / sclib_1 / 1_7 / v7n7063a.txt < prev    next >
Text File  |  1995-11-01  |  255b  |  19 lines

  1.  
  2. Listing 5
  3.  
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void write_string (char *);
  8.  
  9. int main (void)
  10.    {
  11.    write_string("This is a test.");
  12.    }
  13.  
  14. void write_string(char *string)
  15.    {
  16.    write(fileno(stdout), string, strlen(string));
  17.    }
  18.  
  19.